drop column with nan values

28

df = df[df['my_var'].notna()]
fish_frame = fish_frame.dropna(axis = 1, how = 'all')

Comments

Submit
0 Comments